[jira] [Updated] (TS-2794) Build failure related to header requirements of atscppapi

2014-11-20 Thread Susan Hinrichs (JIRA)

 [ 
https://issues.apache.org/jira/browse/TS-2794?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Susan Hinrichs updated TS-2794:
---
Fix Version/s: (was: 5.2.0)
   5.3.0

 Build failure related to header requirements of atscppapi
 -

 Key: TS-2794
 URL: https://issues.apache.org/jira/browse/TS-2794
 Project: Traffic Server
  Issue Type: Bug
  Components: CPP API
Reporter: Ryo Okubo
Assignee: Brian Geffon
 Fix For: 5.3.0

 Attachments: extend-tsxs.diff, shared_ptr_h_in.patch


 When I built my plugin outside of trafficserver source tree, I found build 
 failure related to header requirements of atscppapi as below logs.
 {noformat}
 # I set /usr/local/trafficserver/ as prefix.
 In file included from 
 /usr/local/trafficserver/include/atscppapi/Transaction.h:30:
 /usr/local/trafficserver/include/atscppapi/shared_ptr.h:28:10: fatal error: 
 'ink_autoconf.h' file not found
 #include ink_autoconf.h
  ^
 1 error generated.
 {noformat}
 The shared_ptr.h requires a variable defined on ink_autoconf.h but it doesn't 
 exist in destination directory. so I've already posted Pull-Request on GitHub 
 to fix it. please review, and show me better solution if you have.
 https://github.com/apache/trafficserver/pull/80



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (TS-2794) Build failure related to header requirements of atscppapi

2014-08-01 Thread Alan M. Carroll (JIRA)

 [ 
https://issues.apache.org/jira/browse/TS-2794?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Alan M. Carroll updated TS-2794:


Fix Version/s: (was: 5.1.0)
   5.2.0

 Build failure related to header requirements of atscppapi
 -

 Key: TS-2794
 URL: https://issues.apache.org/jira/browse/TS-2794
 Project: Traffic Server
  Issue Type: Bug
  Components: CPP API
Reporter: Ryo Okubo
Assignee: Brian Geffon
 Fix For: 5.2.0

 Attachments: extend-tsxs.diff, shared_ptr_h_in.patch


 When I built my plugin outside of trafficserver source tree, I found build 
 failure related to header requirements of atscppapi as below logs.
 {noformat}
 # I set /usr/local/trafficserver/ as prefix.
 In file included from 
 /usr/local/trafficserver/include/atscppapi/Transaction.h:30:
 /usr/local/trafficserver/include/atscppapi/shared_ptr.h:28:10: fatal error: 
 'ink_autoconf.h' file not found
 #include ink_autoconf.h
  ^
 1 error generated.
 {noformat}
 The shared_ptr.h requires a variable defined on ink_autoconf.h but it doesn't 
 exist in destination directory. so I've already posted Pull-Request on GitHub 
 to fix it. please review, and show me better solution if you have.
 https://github.com/apache/trafficserver/pull/80



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Updated] (TS-2794) Build failure related to header requirements of atscppapi

2014-05-27 Thread Bryan Call (JIRA)

 [ 
https://issues.apache.org/jira/browse/TS-2794?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Bryan Call updated TS-2794:
---

Fix Version/s: (was: 5.0.0)
   5.1.0

 Build failure related to header requirements of atscppapi
 -

 Key: TS-2794
 URL: https://issues.apache.org/jira/browse/TS-2794
 Project: Traffic Server
  Issue Type: Bug
  Components: CPP API
Reporter: Ryo Okubo
Assignee: Brian Geffon
 Fix For: 5.1.0

 Attachments: extend-tsxs.diff, shared_ptr_h_in.patch


 When I built my plugin outside of trafficserver source tree, I found build 
 failure related to header requirements of atscppapi as below logs.
 {noformat}
 # I set /usr/local/trafficserver/ as prefix.
 In file included from 
 /usr/local/trafficserver/include/atscppapi/Transaction.h:30:
 /usr/local/trafficserver/include/atscppapi/shared_ptr.h:28:10: fatal error: 
 'ink_autoconf.h' file not found
 #include ink_autoconf.h
  ^
 1 error generated.
 {noformat}
 The shared_ptr.h requires a variable defined on ink_autoconf.h but it doesn't 
 exist in destination directory. so I've already posted Pull-Request on GitHub 
 to fix it. please review, and show me better solution if you have.
 https://github.com/apache/trafficserver/pull/80



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Updated] (TS-2794) Build failure related to header requirements of atscppapi

2014-05-23 Thread Masakazu Kitajo (JIRA)

 [ 
https://issues.apache.org/jira/browse/TS-2794?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Masakazu Kitajo updated TS-2794:


Attachment: extend-tsxs.diff

New patch is better than the PR #80, but I think generating shared_ptr.h with 
autoconf still have same issue. The generated shared_ptr.h contains A include 
directive and A namespace which depend on provider/packager's environment. This 
means that the header file forces users (plugin developers) to use the same 
file and namespace which are available in a provider's environment. It's not so 
convenient.

So we should not depend on autoconf which runs on provider's environment and 
should check whether we can use standard shared_ptr or not in users' 
environment.

My idea is that extend tsxs to check the user's environment like a configure 
script. I attached a patch for this (not tested well).

 Build failure related to header requirements of atscppapi
 -

 Key: TS-2794
 URL: https://issues.apache.org/jira/browse/TS-2794
 Project: Traffic Server
  Issue Type: Bug
  Components: CPP API
Reporter: Ryo Okubo
Assignee: Brian Geffon
 Fix For: 5.0.0

 Attachments: extend-tsxs.diff, shared_ptr_h_in.patch


 When I built my plugin outside of trafficserver source tree, I found build 
 failure related to header requirements of atscppapi as below logs.
 {noformat}
 # I set /usr/local/trafficserver/ as prefix.
 In file included from 
 /usr/local/trafficserver/include/atscppapi/Transaction.h:30:
 /usr/local/trafficserver/include/atscppapi/shared_ptr.h:28:10: fatal error: 
 'ink_autoconf.h' file not found
 #include ink_autoconf.h
  ^
 1 error generated.
 {noformat}
 The shared_ptr.h requires a variable defined on ink_autoconf.h but it doesn't 
 exist in destination directory. so I've already posted Pull-Request on GitHub 
 to fix it. please review, and show me better solution if you have.
 https://github.com/apache/trafficserver/pull/80



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Updated] (TS-2794) Build failure related to header requirements of atscppapi

2014-05-21 Thread Ryo Okubo (JIRA)

 [ 
https://issues.apache.org/jira/browse/TS-2794?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ryo Okubo updated TS-2794:
--

Attachment: shared_ptr_h_in.patch

I see. I agree with your opinions and close pull-request for now.

As another solution which don't need config header, I suggest the way that 
create shared_ptr.h automatically by using variables of configure.ac. It fixes 
build failure but it may make complex autoconf's settings.

 Build failure related to header requirements of atscppapi
 -

 Key: TS-2794
 URL: https://issues.apache.org/jira/browse/TS-2794
 Project: Traffic Server
  Issue Type: Bug
  Components: CPP API
Reporter: Ryo Okubo
Assignee: Brian Geffon
 Fix For: 5.0.0

 Attachments: shared_ptr_h_in.patch


 When I built my plugin outside of trafficserver source tree, I found build 
 failure related to header requirements of atscppapi as below logs.
 {noformat}
 # I set /usr/local/trafficserver/ as prefix.
 In file included from 
 /usr/local/trafficserver/include/atscppapi/Transaction.h:30:
 /usr/local/trafficserver/include/atscppapi/shared_ptr.h:28:10: fatal error: 
 'ink_autoconf.h' file not found
 #include ink_autoconf.h
  ^
 1 error generated.
 {noformat}
 The shared_ptr.h requires a variable defined on ink_autoconf.h but it doesn't 
 exist in destination directory. so I've already posted Pull-Request on GitHub 
 to fix it. please review, and show me better solution if you have.
 https://github.com/apache/trafficserver/pull/80



--
This message was sent by Atlassian JIRA
(v6.2#6252)