makefile.mk (305d5283) makefile.mk (64a494d0)
1#**************************************************************
2#
3# Licensed to the Apache Software Foundation (ASF) under one
4# or more contributor license agreements. See the NOTICE file
5# distributed with this work for additional information
6# regarding copyright ownership. The ASF licenses this file
7# to you under the Apache License, Version 2.0 (the
8# "License"); you may not use this file except in compliance

--- 30 unchanged lines hidden (view full) ---

39.ELSE
40
41# Assemble the full version number from the parts defined in serf_version.mk
42LIBSERFVERSION=$(SERF_MAJOR).$(SERF_MINOR).$(SERF_MICRO)
43
44TARFILE_NAME=$(PRJNAME)-$(LIBSERFVERSION)
45# This is the SHA1 checksum, not MD5 but tg_ext.mk does not now about this and,
46# thankfully, does not care.
1#**************************************************************
2#
3# Licensed to the Apache Software Foundation (ASF) under one
4# or more contributor license agreements. See the NOTICE file
5# distributed with this work for additional information
6# regarding copyright ownership. The ASF licenses this file
7# to you under the Apache License, Version 2.0 (the
8# "License"); you may not use this file except in compliance

--- 30 unchanged lines hidden (view full) ---

39.ELSE
40
41# Assemble the full version number from the parts defined in serf_version.mk
42LIBSERFVERSION=$(SERF_MAJOR).$(SERF_MINOR).$(SERF_MICRO)
43
44TARFILE_NAME=$(PRJNAME)-$(LIBSERFVERSION)
45# This is the SHA1 checksum, not MD5 but tg_ext.mk does not now about this and,
46# thankfully, does not care.
47TARFILE_MD5=231af70b7567a753b49df4216743010c193884b7
47TARFILE_MD5=30b29bd9214d50887abcc20cf82096aaaf5d1d61
48
49PATCH_FILES=
50
51.IF "$(OS)"=="WNT"
52
53CONFIGURE_DIR=
54CONFIGURE_ACTION=
55CONFIGURE_FLAGS=

--- 15 unchanged lines hidden (view full) ---

71PATCH_FILES+=$(TARFILE_NAME).libs.patch
72.ENDIF
73
74.IF "$(OS)"=="LINUX"
75# Add -ldl as last library so that the linker has no trouble resolving dependencies.
76PATCH_FILES+=$(TARFILE_NAME).ldl.patch
77.ENDIF
78
48
49PATCH_FILES=
50
51.IF "$(OS)"=="WNT"
52
53CONFIGURE_DIR=
54CONFIGURE_ACTION=
55CONFIGURE_FLAGS=

--- 15 unchanged lines hidden (view full) ---

71PATCH_FILES+=$(TARFILE_NAME).libs.patch
72.ENDIF
73
74.IF "$(OS)"=="LINUX"
75# Add -ldl as last library so that the linker has no trouble resolving dependencies.
76PATCH_FILES+=$(TARFILE_NAME).ldl.patch
77.ENDIF
78
79# Export ENABLE_SERF_LOGGING=YES to enable serf logging
80.IF "$(ENABLE_SERF_LOGGING)" == "YES"
81PATCH_FILES+=$(TARFILE_NAME).logging.patch
82CDEFS+=-DENABLE_SERF_VERBOSE -DSERF_VERBOSE
83.ENDIF
84
79CONFIGURE_DIR=
80CONFIGURE_ACTION=autoconf && .$/configure
81
82.IF "$(OS)"=="LINUX"
83.IF "$(SYSTEM_OPENSSL)"=="YES"
84CDEFS+=$(OPENSSL_CFLAGS)
85.ELSE
86OPENSSLINCDIR=external

--- 42 unchanged lines hidden ---
85CONFIGURE_DIR=
86CONFIGURE_ACTION=autoconf && .$/configure
87
88.IF "$(OS)"=="LINUX"
89.IF "$(SYSTEM_OPENSSL)"=="YES"
90CDEFS+=$(OPENSSL_CFLAGS)
91.ELSE
92OPENSSLINCDIR=external

--- 42 unchanged lines hidden ---