summaryrefslogtreecommitdiff
path: root/comms/gammu/patches/patch-aj
diff options
context:
space:
mode:
Diffstat (limited to 'comms/gammu/patches/patch-aj')
-rw-r--r--comms/gammu/patches/patch-aj44
1 files changed, 0 insertions, 44 deletions
diff --git a/comms/gammu/patches/patch-aj b/comms/gammu/patches/patch-aj
deleted file mode 100644
index 243efda9d89..00000000000
--- a/comms/gammu/patches/patch-aj
+++ /dev/null
@@ -1,44 +0,0 @@
-$NetBSD: patch-aj,v 1.1.1.1 2009/05/25 12:50:00 wiz Exp $
-
-https://bugs.cihar.com/view.php?id=909
-
---- helper/CMakeLists.txt.orig 2009-02-12 14:05:40.000000000 +0000
-+++ helper/CMakeLists.txt
-@@ -5,24 +5,30 @@
- project (gammu-helper C)
-
- include(GammuTuneCompiler)
-+include(GammuTuneFlags)
-
- include_directories (
- "${Gammu_BINARY_DIR}/include"
- )
-
- add_library(string STATIC string.c)
-+GAMMU_TUNE_SHARED(string)
-
- add_library (printing STATIC printing.c)
-+GAMMU_TUNE_SHARED(printing)
-
- add_library (memorydisplay STATIC memory-display.c)
-+GAMMU_TUNE_SHARED(memorydisplay)
- target_link_libraries (memorydisplay libGammu)
-
- add_library (messagecmdline STATIC message-cmdline.c)
-+GAMMU_TUNE_SHARED(messagecmdline)
- target_link_libraries (messagecmdline libGammu)
- target_link_libraries (messagecmdline printing)
- target_link_libraries (messagecmdline string)
-
- add_library (messagedisplay STATIC message-display.c)
-+GAMMU_TUNE_SHARED(messagedisplay)
- target_link_libraries (messagedisplay libGammu)
- target_link_libraries (messagedisplay memorydisplay)
-
-@@ -39,5 +45,6 @@ endif(WIN32 AND NOT CMAKE_COMPILER_IS_MI
-
- if (NOT HAVE_STRPTIME)
- add_library(strptime STATIC strptime.c)
-+ GAMMU_TUNE_SHARED(strptime)
- target_link_libraries (strptime string)
- endif (NOT HAVE_STRPTIME)