Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/neutrinolabs/librfxcodec.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavel Roskin <plroskin@gmail.com>2017-02-04 18:39:39 +0300
committerjsorg71 <jay.sorg@gmail.com>2017-02-22 08:25:49 +0300
commit24098b83b5e5f83406c9b6096e81eac20d7c8446 (patch)
treea5c6b6541a9416892db2ffbe81461bacc4813456
parentb5cfd8a53366f3705230861277dec7346a31117d (diff)
Include config_ac.h from architecture specific sources
-rw-r--r--src/amd64/rfxencode_tile_amd64.c4
-rw-r--r--src/x86/rfxencode_tile_x86.c4
2 files changed, 8 insertions, 0 deletions
diff --git a/src/amd64/rfxencode_tile_amd64.c b/src/amd64/rfxencode_tile_amd64.c
index 431b3d2..07d3f31 100644
--- a/src/amd64/rfxencode_tile_amd64.c
+++ b/src/amd64/rfxencode_tile_amd64.c
@@ -18,6 +18,10 @@
* limitations under the License.
*/
+#if defined(HAVE_CONFIG_H)
+#include <config_ac.h>
+#endif
+
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
diff --git a/src/x86/rfxencode_tile_x86.c b/src/x86/rfxencode_tile_x86.c
index 3418b69..6093699 100644
--- a/src/x86/rfxencode_tile_x86.c
+++ b/src/x86/rfxencode_tile_x86.c
@@ -18,6 +18,10 @@
* limitations under the License.
*/
+#if defined(HAVE_CONFIG_H)
+#include <config_ac.h>
+#endif
+
#include <stdio.h>
#include <stdlib.h>
#include <string.h>