From f3d25a747288dee52c0ca103f88882f220591e29 Mon Sep 17 00:00:00 2001 From: Jeffery To Date: Fri, 27 Oct 2023 14:10:59 +0800 Subject: 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 --- libs/unixodbc/Makefile | 5 ++- libs/unixodbc/files/unixodbc_conf.h | 22 ------------- .../patches/100-cross-compile-odbc-config.patch | 36 ---------------------- 3 files changed, 2 insertions(+), 61 deletions(-) delete mode 100644 libs/unixodbc/files/unixodbc_conf.h delete mode 100644 libs/unixodbc/patches/100-cross-compile-odbc-config.patch (limited to 'libs/unixodbc') 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 - #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 -+#endif -+ - #include - - static void usage( void ) -- cgit v1.2.3