Overview
Comment: | Add support for building as a .framework |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
e3441508b5a2108206d0c5130ca71fc7 |
User & Date: | js on 2018-02-25 23:50:12 |
Other Links: | manifest | tags |
Context
2018-02-25
| ||
23:56 | Fix compilation of tests check-in: 04c3ced613 user: js tags: trunk | |
23:50 | Add support for building as a .framework check-in: e3441508b5 user: js tags: trunk | |
23:45 | Update buildsys check-in: 74e02b19fa user: js tags: trunk | |
Changes
Modified .gitignore from [e5bfada6c3] to [a0c5a1507c].
︙ | |||
10 11 12 13 14 15 16 17 18 | 10 11 12 13 14 15 16 17 18 19 | + | aclocal.m4 autom4te.cache buildsys.mk config.log config.status configure extra.mk src/ObjPgSQL.framework tests/tests tests/tests.exe |
Modified configure.ac from [558a1e18d0] to [fd71ca4739].
︙ | |||
18 19 20 21 22 23 24 | 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | - + + + + + + | AC_PROG_LN_S AC_PROG_INSTALL CPP="$OBJCPP" CPPFLAGS="$CPPFLAGS $OBJCPPFLAGS $($OBJFW_CONFIG --cppflags)" OBJCFLAGS="$OBJCFLAGS $($OBJFW_CONFIG --objcflags)" LDFLAGS="$LDFLAGS $($OBJFW_CONFIG --ldflags)" |
︙ |
Modified extra.mk.in from [8756e19492] to [c310c01327].
1 2 3 4 5 6 | 1 2 3 4 5 6 7 8 9 | + + + | EXCEPTIONS_A = @EXCEPTIONS_A@ EXCEPTIONS_EXCEPTIONS_A = @EXCEPTIONS_EXCEPTIONS_A@ EXCEPTIONS_EXCEPTIONS_LIB_A = @EXCEPTIONS_EXCEPTIONS_LIB_A@ EXCEPTIONS_LIB_A = @EXCEPTIONS_LIB_A@ OBJFW_FRAMEWORK_LIBS = @OBJFW_FRAMEWORK_LIBS@ OBJFW_LIBS = @OBJFW_LIBS@ OBJPGSQL_FRAMEWORK = @OBJPGSQL_FRAMEWORK@ OBJPGSQL_SHARED_LIB = @OBJPGSQL_SHARED_LIB@ OBJPGSQL_STATIC_LIB = @OBJPGSQL_STATIC_LIB@ |
Modified src/Makefile from [66f14d12bb] to [55502a2d24].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | + + + | include ../extra.mk SUBDIRS = exceptions SHARED_LIB = ${OBJPGSQL_SHARED_LIB} STATIC_LIB = ${OBJPGSQL_STATIC_LIB} FRAMEWORK = ${OBJPGSQL_FRAMEWORK} LIB_MAJOR = 0 LIB_MINOR = 1 SRCS = PGConnection.m \ PGResult.m \ PGResultRow.m INCLUDES := ${SRCS:.m=.h} \ ObjPgSQL.h OBJS_EXTRA = ${EXCEPTIONS_EXCEPTIONS_A} LIB_OBJS_EXTRA = ${EXCEPTIONS_EXCEPTIONS_LIB_A} include ../buildsys.mk CPPFLAGS += -I. -Iexceptions LD = ${OBJC} FRAMEWORK_LIBS := ${OBJFW_FRAMEWORK_LIBS} ${LIBS} LIBS := ${OBJFW_LIBS} ${LIBS} |