diff options
author | Jeffery To <jeffery.to@gmail.com> | 2023-10-27 14:10:59 +0800 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2023-10-30 13:25:58 -0700 |
commit | f3d25a747288dee52c0ca103f88882f220591e29 (patch) | |
tree | 12aae3014931eb141f30e920183f64d089656fb9 /libs/unixodbc | |
parent | 3efee178f23ef9bf78678369be48bcaa430456b2 (diff) |
unixodbc: Remove custom unixodbc_conf.h
As unixodbc_conf.h is now generated by configure instead of
odbc_config[1], it is not necessary to use a custom copy of the header
file anymore.
[1]: https://github.com/lurcher/unixODBC/commit/be3341cdc61623a533d3a17529cc65b101bfa8a0
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
Diffstat (limited to 'libs/unixodbc')
-rw-r--r-- | libs/unixodbc/Makefile | 5 | ||||
-rw-r--r-- | libs/unixodbc/files/unixodbc_conf.h | 22 | ||||
-rw-r--r-- | libs/unixodbc/patches/100-cross-compile-odbc-config.patch | 36 |
3 files changed, 2 insertions, 61 deletions
diff --git a/libs/unixodbc/Makefile b/libs/unixodbc/Makefile index f2600432f..bdc52e713 100644 --- a/libs/unixodbc/Makefile +++ b/libs/unixodbc/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=unixodbc PKG_VERSION:=2.3.9 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=unixODBC-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://www.unixodbc.org @@ -107,7 +107,6 @@ define Build/InstallDev $(INSTALL_DIR) $(1)/etc $(CP) $(PKG_INSTALL_DIR)/etc/odbc* $(1)/etc/ $(INSTALL_DIR) $(1)/etc/ODBCDataSources - $(TARGET_CC) $(TARGET_CFLAGS) -E ./files/unixodbc_conf.h | tr '@' '\#' >$(1)/usr/include/unixodbc_conf.h endef define Package/unixodbc/install @@ -145,7 +144,7 @@ define Host/Compile $(MAKE) -C $(HOST_BUILD_DIR)/exe \ DESTDIR="$(HOST_INSTALL_DIR)" \ CC="$(HOSTCC)" \ - CFLAGS="$(HOST_CFLAGS) -DUSE_UNIXODBC_CONF_H" \ + CFLAGS="$(HOST_CFLAGS) \ LDFLAGS="$(HOST_LDFLAGS)" \ odbc_config endef diff --git a/libs/unixodbc/files/unixodbc_conf.h b/libs/unixodbc/files/unixodbc_conf.h deleted file mode 100644 index f149d02b1..000000000 --- a/libs/unixodbc/files/unixodbc_conf.h +++ /dev/null @@ -1,22 +0,0 @@ -@ifndef HAVE_UNISTD_H - @define HAVE_UNISTD_H -@endif -@ifndef HAVE_PWD_H - @define HAVE_PWD_H -@endif -@ifndef HAVE_SYS_TYPES_H - @define HAVE_SYS_TYPES_H -@endif -@ifndef HAVE_LONG_LONG - @define HAVE_LONG_LONG -@endif -@ifndef ODBCINT64 - @define ODBCINT64 long -@endif -@ifndef UODBCINT64 - @define UODBCINT64 unsigned long -@endif -@ifndef SIZEOF_LONG_INT - @define SIZEOF_LONG_INT __SIZEOF_LONG__ -@endif -
\ No newline at end of file diff --git a/libs/unixodbc/patches/100-cross-compile-odbc-config.patch b/libs/unixodbc/patches/100-cross-compile-odbc-config.patch deleted file mode 100644 index 4b952ae18..000000000 --- a/libs/unixodbc/patches/100-cross-compile-odbc-config.patch +++ /dev/null @@ -1,36 +0,0 @@ ---- a/exe/odbc-config.c -+++ b/exe/odbc-config.c -@@ -40,6 +40,33 @@ - #include <unistd.h> - #endif - -+#ifdef USE_UNIXODBC_CONF_H -+ -+#ifdef HAVE_UNISTD_H -+#undef HAVE_UNISTD_H -+#endif -+#ifdef HAVE_PWD_H -+#undef HAVE_PWD_H -+#endif -+#ifdef HAVE_SYS_TYPES_H -+#undef HAVE_SYS_TYPES_H -+#endif -+#ifdef HAVE_LONG_LONG -+#undef HAVE_LONG_LONG -+#endif -+#ifdef ODBCINT64 -+#undef ODBCINT64 -+#endif -+#ifdef UODBCINT64 -+#undef UODBCINT64 -+#endif -+#ifdef SIZEOF_LONG_INT -+#undef SIZEOF_LONG_INT -+#endif -+ -+#include <unixodbc_conf.h> -+#endif -+ - #include <sql.h> - - static void usage( void ) |