utf8proc
annotate pgsql/Makefile @ 11:d79da2302625
Changes for Ruby 1.9 compatibility
- Use RSTRING_PTR() and RSTRING_LEN() instead of RSTRING()->ptr and RSTRING()->len for ruby1.9 compatibility (and #define them, if not existent)
- Use RSTRING_PTR() and RSTRING_LEN() instead of RSTRING()->ptr and RSTRING()->len for ruby1.9 compatibility (and #define them, if not existent)
author | jbe |
---|---|
date | Thu Aug 20 12:00:00 2009 +0200 (2009-08-20) |
parents | a0368662434c |
children |
rev | line source |
---|---|
jbe@0 | 1 utf8proc_pgsql.so: utf8proc_pgsql.o |
jbe@0 | 2 ld -shared -o utf8proc_pgsql.so utf8proc_pgsql.o |
jbe@0 | 3 |
jbe@0 | 4 utf8proc_pgsql.o: utf8proc_pgsql.c |
jbe@0 | 5 gcc -Wall -fpic -c -I`pg_config --includedir-server` \ |
jbe@0 | 6 -o utf8proc_pgsql.o utf8proc_pgsql.c |
jbe@0 | 7 |
jbe@0 | 8 clean: |
jbe@0 | 9 rm -f *.o *.so |
jbe@0 | 10 |