Skip to content

Commit

Permalink
Bump versions and drop old defines from config.h headers.
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelrsweet committed Oct 2, 2023
1 parent 7e63196 commit fc42d96
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 52 deletions.
10 changes: 1 addition & 9 deletions config.h.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//
// Configuration file for the IPP sample code.
//
// Copyright © 2014-2022 by the Printer Working Group.
// Copyright © 2014-2023 by the Printer Working Group.
//
// Licensed under Apache License v2.0. See the file "LICENSE" for more
// information.
Expand All @@ -21,14 +21,6 @@
#undef HAVE_PAM_PAM_APPL_H


// CoreGraphics support
#undef HAVE_COREGRAPHICS


// pdftoppm path
#undef PDFTOPPM


// CuraEngine path
#undef CURAENGINE

Expand Down
2 changes: 1 addition & 1 deletion scripts/makesrcdist
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ rm -rf .tmp/ippsample-$version
mkdir -p .tmp/ippsample-$version
git archive HEAD | (cd .tmp/ippsample-$version; tar xf -)

for sm in libcups pdfio; do
for sm in libcups; do
(cd $sm; git archive --prefix=$sm/ HEAD) | (cd .tmp/ippsample-$version; tar xf -)
done

Expand Down
2 changes: 1 addition & 1 deletion snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: ipp
base: core22
version: '2023.09'
version: '2023.10'
summary: IPP Sample Implementation
description: |
This snap provides sample, non-production-ready implementations of IPP
Expand Down
23 changes: 1 addition & 22 deletions vcnet/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@

#ifndef IPPSAMPLE_CONFIG_H
#define IPPSAMPLE_CONFIG_H


// Include standard headers first...
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Expand Down Expand Up @@ -86,7 +83,7 @@ typedef unsigned long useconds_t;


// Version number
#define IPPSAMPLE_VERSION "2023.09"
#define IPPSAMPLE_VERSION "2023.10"


// PAM support
Expand All @@ -95,24 +92,6 @@ typedef unsigned long useconds_t;
/* #undef HAVE_PAM_PAM_APPL_H */


// strlcpy support
/* #undef HAVE_STRLCPY */


// DNS-SD support
#define HAVE_DNSSD 1
#define HAVE_MDNSRESPONDER 1
/* #undef HAVE_AVAHI */


// CoreGraphics support
/* #undef HAVE_COREGRAPHICS */


// pdftoppm path
/* #undef PDFTOPPM */


// CuraEngine path
/* #undef CURAENGINE */

Expand Down
20 changes: 1 addition & 19 deletions xcode/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


// Version number
#define IPPSAMPLE_VERSION "2023.09"
#define IPPSAMPLE_VERSION "2023.10"


// PAM support
Expand All @@ -21,24 +21,6 @@
/* #undef HAVE_PAM_PAM_APPL_H */


// strlcpy support
#define HAVE_STRLCPY 1


// DNS-SD support
#define HAVE_DNSSD 1
#define HAVE_MDNSRESPONDER 1
/* #undef HAVE_AVAHI */


// CoreGraphics support
#define HAVE_COREGRAPHICS 1


// pdftoppm path
/* #undef PDFTOPPM */


// CuraEngine path
#define CURAENGINE "/Applications/Ultimaker Cura.app/Contents/MacOS/CuraEngine"

Expand Down

0 comments on commit fc42d96

Please sign in to comment.