author | Michael Krelin <hacker@klever.net> | 2007-04-16 21:06:52 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2007-04-16 21:06:52 (UTC) |
commit | c485564f09642aefcfa2ec23ac887589f7dc1843 (patch) (unidiff) | |
tree | d8e455cf026d9e5faf9bf08c4cd0d63167bee30d /app-pda/makeztxt/files | |
parent | 2ae8ba67d6f323d3678af8b2918cd757ca13a447 (diff) | |
download | misc-c485564f09642aefcfa2ec23ac887589f7dc1843.zip misc-c485564f09642aefcfa2ec23ac887589f7dc1843.tar.gz misc-c485564f09642aefcfa2ec23ac887589f7dc1843.tar.bz2 |
app-pda/makeztxt: make 32bits on amd64
-rw-r--r-- | app-pda/makeztxt/files/makeztxt-1.60-cflags.patch | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/app-pda/makeztxt/files/makeztxt-1.60-cflags.patch b/app-pda/makeztxt/files/makeztxt-1.60-cflags.patch new file mode 100644 index 0000000..e30f504 --- a/dev/null +++ b/app-pda/makeztxt/files/makeztxt-1.60-cflags.patch | |||
@@ -0,0 +1,18 @@ | |||
1 | diff --git a/Makefile b/Makefile | ||
2 | index 17c5302..47f5075 100644 | ||
3 | --- a/Makefile | ||
4 | +++ b/Makefile | ||
5 | @@ -6,11 +6,11 @@ | ||
6 | |||
7 | VERSION= 1.60 | ||
8 | |||
9 | -LIBS= -lztxt | ||
10 | +LIBS+= -lztxt | ||
11 | INCLUDE= -I../common -I. | ||
12 | |||
13 | CC= gcc | ||
14 | -CFLAGS= -Wall -O2 -pipe $(INCLUDE) | ||
15 | +CFLAGS+= -Wall -O2 -pipe $(INCLUDE) | ||
16 | # GNU make is mandatory | ||
17 | #MAKE= make | ||
18 | |||