* hp5400 : Version Matching Test removed by default

merge-requests/1/head
Thomas Soumarmon 2004-10-02 17:03:58 +00:00
rodzic f5aaa34eed
commit bae6c75ac7
2 zmienionych plików z 12 dodań i 0 usunięć

Wyświetl plik

@ -1,3 +1,10 @@
2004-10-02 Thomas Soumarmon <thomas.soumarmon@cogitae.net>
* backend/hp5400_internal.c: hp5400 version mathing test
has been removed by default.
To enable it :
CFLAGS="-DSTRING_VERSION_MATCH" ./configure
2004-10-02 Henning Meier-Geinitz <henning@meier-geinitz.de>
* doc/descriptions/unsupported.desc: Added several

Wyświetl plik

@ -74,6 +74,11 @@
#define max(A,B) (((A)>(B)) ? (A) : (B))
#endif
#ifndef STRING_VERSION_MATCH
#define NO_STRING_VERSION_MATCH 1
#endif
#ifdef __GNUC__
#define PACKED __attribute__ ((packed))
#else