*** ./Makefile.ORIG Wed Apr 8 00:54:03 2015 --- ./Makefile Wed Apr 8 01:03:30 2015 *************** *** 6,12 **** INSTALL=install # compiler settings ! cflags = -O2 -std=c99 -pedantic -Wall -fpic -DUTF8PROC_EXPORTS $(CFLAGS) cc = $(CC) $(cflags) # shared-library version MAJOR.MINOR.PATCH ... this may be *different* --- 6,12 ---- INSTALL=install # compiler settings ! cflags = -O -DUTF8PROC_EXPORTS $(CFLAGS) cc = $(CC) $(cflags) # shared-library version MAJOR.MINOR.PATCH ... this may be *different* *************** *** 36,42 **** .PHONY: all, clean, update, data ! all: libutf8proc.a libutf8proc.$(SHLIB_EXT) clean: rm -f utf8proc.o libutf8proc.a libutf8proc.$(SHLIB_VERS_EXT) libutf8proc.$(SHLIB_EXT) test/normtest test/graphemetest test/printproperty test/charwidth --- 36,42 ---- .PHONY: all, clean, update, data ! all: libutf8proc.a clean: rm -f utf8proc.o libutf8proc.a libutf8proc.$(SHLIB_VERS_EXT) libutf8proc.$(SHLIB_EXT) test/normtest test/graphemetest test/printproperty test/charwidth *** ./utf8proc.h.ORIG Wed Apr 8 00:55:33 2015 --- ./utf8proc.h Wed Apr 8 01:01:31 2015 *************** *** 87,99 **** # else # define ssize_t int # endif # ifndef __cplusplus typedef unsigned char bool; enum {false, true}; # endif - #else - # include - # include #endif #include --- 87,101 ---- # else # define ssize_t int # endif + #else # ifndef __cplusplus typedef unsigned char bool; enum {false, true}; + # ifndef _AIX + # include + # endif + # include # endif #endif #include